$strTrim = Ltrim (<String>)
Removes all
leading white space characters, tabs and line feed from the specified string.
Parameters
<String> The
string from which the leading white spaces and tabs are to be removed.
Return Value
The string with
the leading white spaces removed.
Remarks
Example
$Str = " Hello, World"
$NewStr = Ltrim($Str)
- $NewStr now
contains "Hello, World".